home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ Registry Options 1.xpl < prev    next >
Text File  |  2000-08-07  |  1KB  |  49 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="System\Security\Common"
  5. "NAME"="Disable Regedit"
  6. "VERSION"="1.1"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Disable starting RegEdit.EXE"
  9. "DESCRIPTION 1"="If this option is set, the current user is no longer allowed to start regedit.exe or regedt32.exe."
  10. "DESCRIPTION 2"="In the case a user tries to execute a registry-utility (NOT X-Setup ;-), a message will be displayed that this feature has been disabled."
  11. "DESCRIPTION 3"="Be really careful with this option!!!"
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16.  
  17.  
  18. 'Only for Win95???? 
  19. 'sPath="HKUS\.Default\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
  20.  
  21. 'Works on NT 4 sp3 and Win 95 OSR2
  22. sPath="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
  23.  
  24. Sub Plugin_Initialize 
  25.  i=RegReadValue(sPath)
  26.  if i=1 then
  27.   Call SetUIElement(1,true) 
  28.  end if  
  29. End Sub
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35.  b=GetUIElement(1)
  36.  if b=true then
  37.   Call RegWriteValue(sPath,1,2) 
  38.  else
  39.   Call RegWriteValue(sPath,0,2) 
  40.  end if
  41. End Sub
  42.  
  43.  
  44. Sub Plugin_Terminate 
  45. End Sub
  46.  
  47.  
  48.  
  49.